home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / handson / handson.exe / CREATURE.CLASS (.txt) < prev    next >
Encoding:
Java Class File  |  1997-02-07  |  629 b   |  13 lines

  1. class Creature extends Thing {
  2.    private String species;
  3.  
  4.    Creature(String aName, String aDescription, String aSpecies) {
  5.       super(aName, aDescription);
  6.       this.species = aSpecies;
  7.    }
  8.  
  9.    String getSpecies() {
  10.       return this.species;
  11.    }
  12. }
  13.